#Installing packages#
#install.packages("parallel")

Add a new chunk by clicking the Insert Chunk button on the toolbar or by pressing Ctrl+Alt+I.

library(MASS)
library(Matrix)
library(glmnet)
Loaded glmnet 4.1-2
library(Rcpp)
library(VSURF)
library(stats)
library(parallel)
#Import auxiliary functions
source("auxiliary_functions.R", local=FALSE)
set.seed(456)

When you save the notebook, an HTML file containing the code and output will be saved alongside it (click the Preview button or press Ctrl+Shift+K to preview the HTML file).

The preview shows you a rendered HTML copy of the contents of the editor. Consequently, unlike Knit, Preview does not run any R code chunks. Instead, the output of the chunk when it was last run in the editor is displayed.

beta = beta_1(p=100,s=5)
df <- simulate(n=100, p=100, rho=0.5, beta=beta, SNR = 1)$df
x <- data.matrix(df[,-1]) #explan var, glmnet can't use dataframe
y <- data.matrix(df[,1]) #dependent var, glmnet can't use dataframe

cv.out = cv.glmnet(x, y, alpha = 1, intercept=FALSE) # Fit lasso model on training data
plot(cv.out) # Draw plot of training MSE as a function of lambda

lam = cv.out$lambda.1se # Select more conservative lambda for variable selection


lasso_coef = predict(cv.out, type = "coefficients", s = lam) # Display coefficients using lambda chosen by CV

beta = beta_2(p=50,s=5)
df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = 1)$df
result = RF_VSURF(data=df, beta=beta)
Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                  
  |                                                                                                                                                                                                            |   0%
  |                                                                                                                                                                                                                  
  |==========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                  
  |===================================================                                                                                                                                                         |  25%
  |                                                                                                                                                                                                                  
  |============================================================================                                                                                                                                |  38%
  |                                                                                                                                                                                                                  
  |======================================================================================================                                                                                                      |  50%
  |                                                                                                                                                                                                                  
  |================================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                  
  |=========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                  
  |==================================================================================================================================================================================                          |  88%
  |                                                                                                                                                                                                                  
  |============================================================================================================================================================================================================| 100%
RF_VSURF <- function(data, #data frame - dependent variable first
                     beta #true coefficients
){
  #--------------------------
  # Uses VSURF prediction under parallelization and
  # returns number of correctly identified  significant variables.
  # Mytree and ntree are set to default
  # ------------------------- 
  x <- data.matrix(data[,-1]) #explan var, glmnet can't use dataframe
  y <- data.matrix(data[,1]) #dependent var, glmnet can't use dataframe
  
  defaultW <- getOption("warn")  #Turn off warning messages
  options(warn = -1) 
  

  #Variable Selection using Random Forest
  model.vsurf <- VSURF(x=x, y=y, parallel = TRUE , ncores= 4)
  
  options(warn = defaultW) #re-enable warning messages

  #---------------------
  # Retention Frequency
  #---------------------
  #Create boolian vector of selected coefficients
  loc = model.vsurf$varselect.pred # location of significant coefficients
  estim_var = rep(0, length(beta)) #create zero vector of correct length
  estim_var[loc] = 1 #populate zero vector
  
  retention = var_retention(estim_var, beta) #counts only significant variables
  identification = var_identification(estim_var, beta) #counts all vars
  
  #---------------------
  # OOB error
  #---------------------
  OOB_error = min(model.vsurf$err.pred) # VSURF returns a vector, final element is (minimal) OOB error and includes all !prediction! variables
  
  result = list("retention" = retention, "identification" = identification, "OOB_error" = OOB_error)
  
  return(result)
}
  
cv.lasso_2 <- function(data, #data frame - dependent variable first
                     beta # true coefficients
){
  #--------------------------
  # Uses 10 fold CV and uses 1 SE lambda
  # as conservative estimate for variable selection
  # -------------------------
  x <- data.matrix(data[,-1]) #explan var, glmnet can't use dataframe
  y <- data.matrix(data[,1]) #dependent var, glmnet can't use dataframe
  
  cv.out = cv.glmnet(x, y, alpha = 1, intercept=FALSE) # Fit lasso model on training data
  #lam = cv.out$lambda.1se # Select more conservative lambda for variable selection
  lam = cv.out$lambda.min
  
  #---------------------
  # Retention Frequency
  #---------------------
  lasso_coef = predict(cv.out, type = "coefficients", s = lam) # Display coefficients using lambda chosen by CV
  retention = var_retention(lasso_coef, beta) #counts significant vars
  identification = var_identification(lasso_coef, beta) #counts all vars
  
  #---------------------
  # MSE
  #---------------------
  mse <- cv.out$cvm[cv.out$lambda == cv.out$lambda.1se]
  
  
  results = list("retention" = retention, "identification" =identification, "mse" = mse)
  return(results)
}
#--------------------------------
# Simulation 1
#--------------------------------

start_time <- Sys.time()

# Number of simulations
n_sim = 30
# Signal-to-noise ratios 
snr.vec = exp(seq(log(0.05),log(6),length=10))
#beta vector
beta = beta_1(p=50,s=5)
#containers to store results
retention_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

identification_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

prediction_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

#Simulation
for (j in 1:length(snr.vec)){
    SNR = snr.vec[j]
    for (i in 1:n_sim){
        df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = SNR)$df 
        res_lasso = cv.lasso(data=df, beta=beta)
        retention_lasso[i, j] = res_lasso$retention   
        identification_lasso[i, j] = res_lasso$identification
        prediction_lasso[i, j] = res_lasso$mse
        
        res_lasso2 = cv.lasso_2(data=df, beta=beta)
        retention_lasso2[i, j] = res_lasso2$retention   
        identification_lasso2[i, j] = res_lasso2$identification
        prediction_lasso2[i, j] = res_lasso2$mse
        
        res_RF = RF_VSURF(data=df, beta=beta)
        retention_RF[i, j] = res_RF$retention   
        identification_RF[i, j] = res_RF$identification
        prediction_RF[i, j] = res_RF$OOB_error
        
    }
}
Thresholding step
Estimated computational time (on one core): 57 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 1 variables)
Maximum estimated computational time (on one core): 0.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  24.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  19.2 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  9 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.2 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  9 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 6 variables)
Estimated computational time (on one core): between 4.5 sec. and  6 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  55 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  10 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  15.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  19.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 6 variables)
Estimated computational time (on one core): between 4.5 sec. and  7.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  13.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.7 sec. and  22 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 20 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.8 sec. and  13.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 8 sec. and  8 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 57.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 19.5 sec. and  22.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  12.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  15 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.7 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.3 sec. and  11 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.2 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.2 sec. and  26 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 14 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.7 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 26 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.8 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.3 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.2 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  11.2 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.3 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  26.2 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  24.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  45 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  49.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  51.7 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 21 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 27.5 sec. and  60.5 sec.

Prediction step (on 17 variables)
Maximum estimated computational time (on one core): 29.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |============                                                                                                                                                                                               |   6%
  |                                                                                                                                                                                                                 
  |========================                                                                                                                                                                                   |  12%
  |                                                                                                                                                                                                                 
  |====================================                                                                                                                                                                       |  18%
  |                                                                                                                                                                                                                 
  |================================================                                                                                                                                                           |  24%
  |                                                                                                                                                                                                                 
  |============================================================                                                                                                                                               |  29%
  |                                                                                                                                                                                                                 
  |========================================================================                                                                                                                                   |  35%
  |                                                                                                                                                                                                                 
  |====================================================================================                                                                                                                       |  41%
  |                                                                                                                                                                                                                 
  |================================================================================================                                                                                                           |  47%
  |                                                                                                                                                                                                                 
  |===========================================================================================================                                                                                                |  53%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================                                                                                    |  59%
  |                                                                                                                                                                                                                 
  |===================================================================================================================================                                                                        |  65%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================================                                                            |  71%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================                                                |  76%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================                                    |  82%
  |                                                                                                                                                                                                                 
  |===================================================================================================================================================================================                        |  88%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================================================================================            |  94%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.3 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  72 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  57.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  66 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  45 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  50 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.8 sec. and  57.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  33.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 28.8 sec. and  63.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 24 sec. and  72 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.3 sec. and  29.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.3 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  68.2 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.3 sec. and  29.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 28.7 sec. and  63.2 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 27.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  60.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 23.7 sec. and  42.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 27.5 sec. and  49.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 26 sec. and  84.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  60.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 28.5 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.3 sec. and  42.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 26.2 sec. and  57.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 31.2 sec. and  75 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  66 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 18.7 sec. and  68.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 24 sec. and  72 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 23 sec. and  63.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 23 sec. and  63.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 12.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 27.5 sec. and  55 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  60 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  60.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  38.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 27 variables)
Estimated computational time (on one core): between 20.2 sec. and  87.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 24 sec. and  78 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  50 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 26.3 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  38 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 14 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  33.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%
#Saving results in dataframe
sim1_retention = data.frame(cbind(t(retention_lasso), t(retention_lasso2), t(retention_RF)))
colnames(sim1_retention) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim1_retention,"sim1_retention.csv", row.names = FALSE)

sim1_identification = data.frame(cbind(t(identification_lasso), t(identification_lasso2), t(identification_RF)))
colnames(sim1_identification) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim1_identification,"sim1_identification.csv", row.names = FALSE)

sim1_prediction = data.frame(cbind(t(prediction_lasso), t(prediction_lasso2), t(prediction_RF)))
colnames(sim1_prediction) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim1_prediction,"sim1_prediction.csv", row.names = FALSE)

end_time <- Sys.time()

cat("Duration for Number of Sims = ", n_sim, "is: ", end_time - start_time)
Duration for Number of Sims =  30 is:  2.956848
#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency lasso - conservative", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), main="Retention frequency lasso - optimal pred", col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), main="Retention frequency VSURF - prediction", col="red", type="b")


#--------------
# Identification Plot
#---------------
true_sparsity = length(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(identification_lasso, true_sparsity), main="Identification frequency lasso - conservative", col="blue", type="b", ylim=c(75,100))
points(snr.vec, retention_frequency(identification_lasso2, true_sparsity), main="Identification frequency lasso - optimal pred", col="green", type="b")
points(snr.vec, retention_frequency(identification_RF, true_sparsity), main="Identification frequency VSURF - prediction", col = "red", type="b")


#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE lasso - conservative", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2), main="MSE lasso - optimal pred", col="green", type="b")
points(snr.vec, error_rate(prediction_RF), main="MSE VSURF - prediction", col="red", type="b")

#--------------------------------
# Simulation 2
#--------------------------------

start_time <- Sys.time()

# Number of simulations
n_sim = 30
# Signal-to-noise ratios 
snr.vec = exp(seq(log(0.05),log(6),length=10))
#beta vector
beta = beta_2(p=50,s=5)
#containers to store results
retention_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

identification_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

prediction_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

#Simulation
for (j in 1:length(snr.vec)){
    SNR = snr.vec[j]
    for (i in 1:n_sim){
        df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = SNR)$df 
        res_lasso = cv.lasso(data=df, beta=beta)
        retention_lasso[i, j] = res_lasso$retention   
        identification_lasso[i, j] = res_lasso$identification
        prediction_lasso[i, j] = res_lasso$mse
        
        res_lasso2 = cv.lasso_2(data=df, beta=beta)
        retention_lasso2[i, j] = res_lasso2$retention   
        identification_lasso2[i, j] = res_lasso2$identification
        prediction_lasso2[i, j] = res_lasso2$mse
        
        res_RF = RF_VSURF(data=df, beta=beta)
        retention_RF[i, j] = res_RF$retention   
        identification_RF[i, j] = res_RF$identification
        prediction_RF[i, j] = res_RF$OOB_error
        
    }
}
Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 5 variables)
Estimated computational time (on one core): between 3.7 sec. and  3.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.3 sec. and  7 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  52.3 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56 sec.

Interpretation step (on 5 variables)
Estimated computational time (on one core): between 3.7 sec. and  3.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  13.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 10 sec. and  10 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 26 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |================                                                                                                                                                                                           |   8%
  |                                                                                                                                                                                                                 
  |===============================                                                                                                                                                                            |  15%
  |                                                                                                                                                                                                                 
  |===============================================                                                                                                                                                            |  23%
  |                                                                                                                                                                                                                 
  |==============================================================                                                                                                                                             |  31%
  |                                                                                                                                                                                                                 
  |==============================================================================                                                                                                                             |  38%
  |                                                                                                                                                                                                                 
  |==============================================================================================                                                                                                             |  46%
  |                                                                                                                                                                                                                 
  |=============================================================================================================                                                                                              |  54%
  |                                                                                                                                                                                                                 
  |=============================================================================================================================                                                                              |  62%
  |                                                                                                                                                                                                                 
  |=============================================================================================================================================                                                              |  69%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================                                               |  77%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================                               |  85%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================                |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 5 variables)
Estimated computational time (on one core): between 3.7 sec. and  3.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  34 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==============                                                                                                                                                                                             |   7%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |============================================                                                                                                                                                               |  21%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |========================================================================                                                                                                                                   |  36%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================                                                                         |  64%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |================================================================================================================================================================                                           |  79%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================================               |  93%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  22.8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 3 variables)
Estimated computational time (on one core): between 3 sec. and  2.2 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  38.2 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.8 sec. and  13.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  24.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  40.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  36 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  14 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  26.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  33.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 12.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  12.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 21 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==============                                                                                                                                                                                             |   7%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |============================================                                                                                                                                                               |  21%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |========================================================================                                                                                                                                   |  36%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================                                                                         |  64%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |================================================================================================================================================================                                           |  79%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================================               |  93%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  37.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  45 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 15 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.3 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==============                                                                                                                                                                                             |   7%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |============================================                                                                                                                                                               |  21%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |========================================================================                                                                                                                                   |  36%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================                                                                         |  64%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |================================================================================================================================================================                                           |  79%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================================               |  93%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 1 variables)
Maximum estimated computational time (on one core): 0.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==============                                                                                                                                                                                             |   7%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |============================================                                                                                                                                                               |  21%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |========================================================================                                                                                                                                   |  36%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================                                                                         |  64%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |================================================================================================================================================================                                           |  79%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================================               |  93%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 26 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |================                                                                                                                                                                                           |   8%
  |                                                                                                                                                                                                                 
  |===============================                                                                                                                                                                            |  15%
  |                                                                                                                                                                                                                 
  |===============================================                                                                                                                                                            |  23%
  |                                                                                                                                                                                                                 
  |==============================================================                                                                                                                                             |  31%
  |                                                                                                                                                                                                                 
  |==============================================================================                                                                                                                             |  38%
  |                                                                                                                                                                                                                 
  |==============================================================================================                                                                                                             |  46%
  |                                                                                                                                                                                                                 
  |=============================================================================================================                                                                                              |  54%
  |                                                                                                                                                                                                                 
  |=============================================================================================================================                                                                              |  62%
  |                                                                                                                                                                                                                 
  |=============================================================================================================================================                                                              |  69%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================                                               |  77%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================                               |  85%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================                |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  38.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 16 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============                                                                                                                                                                                              |   6%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |======================================                                                                                                                                                                     |  19%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |===============================================================                                                                                                                                            |  31%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |=========================================================================================                                                                                                                  |  44%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==================================================================================================================                                                                                         |  56%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================                                                               |  69%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=====================================================================================================================================================================                                      |  81%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================================             |  94%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.8 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.2 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.3 sec. and  11 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==============                                                                                                                                                                                             |   7%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |============================================                                                                                                                                                               |  21%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |========================================================================                                                                                                                                   |  36%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================                                                                         |  64%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |================================================================================================================================================================                                           |  79%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================================               |  93%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  33.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  37.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.3 sec. and  33.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.3 sec. and  42.7 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  36 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.3 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 12.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |================                                                                                                                                                                                           |   8%
  |                                                                                                                                                                                                                 
  |===============================                                                                                                                                                                            |  15%
  |                                                                                                                                                                                                                 
  |===============================================                                                                                                                                                            |  23%
  |                                                                                                                                                                                                                 
  |==============================================================                                                                                                                                             |  31%
  |                                                                                                                                                                                                                 
  |==============================================================================                                                                                                                             |  38%
  |                                                                                                                                                                                                                 
  |==============================================================================================                                                                                                             |  46%
  |                                                                                                                                                                                                                 
  |=============================================================================================================                                                                                              |  54%
  |                                                                                                                                                                                                                 
  |=============================================================================================================================                                                                              |  62%
  |                                                                                                                                                                                                                 
  |=============================================================================================================================================                                                              |  69%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================                                               |  77%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================                               |  85%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================                |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  47.3 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.8 sec. and  57.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  15.8 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  47.2 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 21 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.3 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |================                                                                                                                                                                                           |   8%
  |                                                                                                                                                                                                                 
  |===============================                                                                                                                                                                            |  15%
  |                                                                                                                                                                                                                 
  |===============================================                                                                                                                                                            |  23%
  |                                                                                                                                                                                                                 
  |==============================================================                                                                                                                                             |  31%
  |                                                                                                                                                                                                                 
  |==============================================================================                                                                                                                             |  38%
  |                                                                                                                                                                                                                 
  |==============================================================================================                                                                                                             |  46%
  |                                                                                                                                                                                                                 
  |=============================================================================================================                                                                                              |  54%
  |                                                                                                                                                                                                                 
  |=============================================================================================================================                                                                              |  62%
  |                                                                                                                                                                                                                 
  |=============================================================================================================================================                                                              |  69%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================                                               |  77%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================                               |  85%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================                |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.7 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.3 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 4.2 sec. and  34 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  11.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  11 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  57.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  26.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  66 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 12.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  57.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%
#Saving results in dataframe
sim1_retention = data.frame(cbind(t(retention_lasso), t(retention_lasso2), t(retention_RF)))
colnames(sim1_retention) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim1_retention,"sim2_retention.csv", row.names = FALSE)

sim1_identification = data.frame(cbind(t(identification_lasso), t(identification_lasso2), t(identification_RF)))
colnames(sim1_identification) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim1_identification,"sim2_identification.csv", row.names = FALSE)

sim1_prediction = data.frame(cbind(t(prediction_lasso), t(prediction_lasso2), t(prediction_RF)))
colnames(sim1_prediction) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim1_prediction,"sim2_prediction.csv", row.names = FALSE)

end_time <- Sys.time()

cat("Duration for Number of Sims = ", n_sim, "is: ", end_time - start_time)
Duration for Number of Sims =  30 is:  2.868041
#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency - Simulation 2", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), col="red", type="b")


#--------------
# Identification Plot
#---------------
true_sparsity = length(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(identification_lasso, true_sparsity), main="Identification frequency - Simulation 2", col="blue", type="b", ylim=c(80,100))
points(snr.vec, retention_frequency(identification_lasso2, true_sparsity),  col="green", type="b")
points(snr.vec, retention_frequency(identification_RF, true_sparsity),  col = "red", type="b")


#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE - Simulation 2", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2),  col="green", type="b")
points(snr.vec, error_rate(prediction_RF), col="red", type="b")

#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency - Simulation 2", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), col="red", type="b")


#--------------
# Identification Plot
#---------------
true_sparsity = length(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(identification_lasso, true_sparsity), main="Identification frequency - Simulation 2", col="blue", type="b", ylim=c(80,100))
points(snr.vec, retention_frequency(identification_lasso2, true_sparsity),  col="green", type="b")
points(snr.vec, retention_frequency(identification_RF, true_sparsity),  col = "red", type="b")


#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE - Simulation 2", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2),  col="green", type="b")
points(snr.vec, error_rate(prediction_RF), col="red", type="b")

#--------------------------------
# Simulation 2 - only LAssos
#--------------------------------

start_time <- Sys.time()

# Number of simulations
n_sim = 100
# Signal-to-noise ratios 
snr.vec = exp(seq(log(0.05),log(6),length=10))
#beta vector
beta = beta_1(p=50,s=5)
#containers to store results
retention_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

identification_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

prediction_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

#Simulation
for (j in 1:length(snr.vec)){
    SNR = snr.vec[j]
    for (i in 1:n_sim){
        df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = SNR)$df 
        res_lasso = cv.lasso(data=df, beta=beta)
        retention_lasso[i, j] = res_lasso$retention   
        identification_lasso[i, j] = res_lasso$identification
        prediction_lasso[i, j] = res_lasso$mse
        
        res_lasso2 = cv.lasso_2(data=df, beta=beta)
        retention_lasso2[i, j] = res_lasso2$retention   
        identification_lasso2[i, j] = res_lasso2$identification
        prediction_lasso2[i, j] = res_lasso2$mse
        
        #res_RF = RF_VSURF(data=df, beta=beta)
        #retention_RF[i, j] = res_RF$retention   
        #identification_RF[i, j] = res_RF$identification
       # prediction_RF[i, j] = res_RF$OOB_error
        
    }
}

#Saving results in dataframe
sim1_retention = data.frame(cbind(t(retention_lasso), t(retention_lasso2), t(retention_RF)))
colnames(sim1_retention) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim1_retention,"sim2_retention.csv", row.names = FALSE)

sim1_identification = data.frame(cbind(t(identification_lasso), t(identification_lasso2), t(identification_RF)))
colnames(sim1_identification) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim1_identification,"sim2_identification.csv", row.names = FALSE)

sim1_prediction = data.frame(cbind(t(prediction_lasso), t(prediction_lasso2), t(prediction_RF)))
colnames(sim1_prediction) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim1_prediction,"sim2_prediction.csv", row.names = FALSE)

end_time <- Sys.time()

cat("Duration for Number of Sims = ", n_sim, "is: ", end_time - start_time)
Duration for Number of Sims =  100 is:  3.114549
#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency - Simulation 2", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), col="red", type="b")


#--------------
# Identification Plot
#---------------
true_sparsity = length(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(identification_lasso, true_sparsity), main="Identification frequency - Simulation 2", col="blue", type="b", ylim=c(80,100))
points(snr.vec, retention_frequency(identification_lasso2, true_sparsity),  col="green", type="b")
points(snr.vec, retention_frequency(identification_RF, true_sparsity),  col = "red", type="b")


#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE - Simulation 2", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2),  col="green", type="b")
points(snr.vec, error_rate(prediction_RF), col="red", type="b")

#--------------------------------
# Simulation 3 - beta 3
#--------------------------------

start_time <- Sys.time()

# Number of simulations
n_sim = 15
# Signal-to-noise ratios 
snr.vec = exp(seq(log(0.05),log(6),length=10))
#beta vector
beta = beta_3(p=50,s=5, value=0.5)
#containers to store results
retention_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

identification_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

prediction_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

#Simulation
for (j in 1:length(snr.vec)){
    SNR = snr.vec[j]
    for (i in 1:n_sim){
        df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = SNR)$df 
        res_lasso = cv.lasso(data=df, beta=beta)
        retention_lasso[i, j] = res_lasso$retention   
        identification_lasso[i, j] = res_lasso$identification
        prediction_lasso[i, j] = res_lasso$mse
        
        res_lasso2 = cv.lasso_2(data=df, beta=beta)
        retention_lasso2[i, j] = res_lasso2$retention   
        identification_lasso2[i, j] = res_lasso2$identification
        prediction_lasso2[i, j] = res_lasso2$mse
        
        res_RF = RF_VSURF(data=df, beta=beta)
        retention_RF[i, j] = res_RF$retention   
        identification_RF[i, j] = res_RF$identification
        prediction_RF[i, j] = res_RF$OOB_error
        
    }
}
Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  15.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  17.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  33.7 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  15.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 11.2 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  24.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 7 sec. and  8.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  52.3 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  19.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  37.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  45 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  17.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 6 variables)
Estimated computational time (on one core): between 4.5 sec. and  4.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  12.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==============                                                                                                                                                                                             |   7%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |============================================                                                                                                                                                               |  21%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |========================================================================                                                                                                                                   |  36%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================                                                                         |  64%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |================================================================================================================================================================                                           |  79%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================================               |  93%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  15.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.7 sec. and  11 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  12.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==============                                                                                                                                                                                             |   7%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |============================================                                                                                                                                                               |  21%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |========================================================================                                                                                                                                   |  36%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================                                                                         |  64%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |================================================================================================================================================================                                           |  79%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================================================================               |  93%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 16 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============                                                                                                                                                                                              |   6%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |======================================                                                                                                                                                                     |  19%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |===============================================================                                                                                                                                            |  31%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |=========================================================================================                                                                                                                  |  44%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==================================================================================================================                                                                                         |  56%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |============================================================================================================================================                                                               |  69%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=====================================================================================================================================================================                                      |  81%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================================             |  94%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  26.2 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.2 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 23 sec. and  63.2 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  51.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================                                                                                                                                                                                         |   9%
  |                                                                                                                                                                                                                 
  |=====================================                                                                                                                                                                      |  18%
  |                                                                                                                                                                                                                 
  |=======================================================                                                                                                                                                    |  27%
  |                                                                                                                                                                                                                 
  |==========================================================================                                                                                                                                 |  36%
  |                                                                                                                                                                                                                 
  |============================================================================================                                                                                                               |  45%
  |                                                                                                                                                                                                                 
  |===============================================================================================================                                                                                            |  55%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================                                                                          |  64%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================                                                       |  73%
  |                                                                                                                                                                                                                 
  |======================================================================================================================================================================                                     |  82%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================================                  |  91%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  66 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 21 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.3 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================                                                                                                                                                                                       |  10%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=============================================================                                                                                                                                              |  30%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================                                                             |  70%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================================================================                    |  90%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=================                                                                                                                                                                                          |   8%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=====================================================================================                                                                                                                      |  42%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |======================================================================================================================                                                                                     |  58%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================================================================================                 |  92%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=======================                                                                                                                                                                                    |  11%
  |                                                                                                                                                                                                                 
  |=============================================                                                                                                                                                              |  22%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |==========================================================================================                                                                                                                 |  44%
  |                                                                                                                                                                                                                 
  |=================================================================================================================                                                                                          |  56%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================                                             |  78%
  |                                                                                                                                                                                                                 
  |====================================================================================================================================================================================                       |  89%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |============================================================================                                                                                                                               |  38%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |===============================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================================                         |  88%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |===================================================                                                                                                                                                        |  25%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=========================================                                                                                                                                                                  |  20%
  |                                                                                                                                                                                                                 
  |=================================================================================                                                                                                                          |  40%
  |                                                                                                                                                                                                                 
  |==========================================================================================================================                                                                                 |  60%
  |                                                                                                                                                                                                                 
  |==================================================================================================================================================================                                         |  80%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |==================================                                                                                                                                                                         |  17%
  |                                                                                                                                                                                                                 
  |====================================================================                                                                                                                                       |  33%
  |                                                                                                                                                                                                                 
  |======================================================================================================                                                                                                     |  50%
  |                                                                                                                                                                                                                 
  |=======================================================================================================================================                                                                    |  67%
  |                                                                                                                                                                                                                 
  |=========================================================================================================================================================================                                  |  83%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                                                                                                                                 
  |                                                                                                                                                                                                           |   0%
  |                                                                                                                                                                                                                 
  |=============================                                                                                                                                                                              |  14%
  |                                                                                                                                                                                                                 
  |==========================================================                                                                                                                                                 |  29%
  |                                                                                                                                                                                                                 
  |=======================================================================================                                                                                                                    |  43%
  |                                                                                                                                                                                                                 
  |====================================================================================================================                                                                                       |  57%
  |                                                                                                                                                                                                                 
  |=================================================================================================================================================                                                          |  71%
  |                                                                                                                                                                                                                 
  |==============================================================================================================================================================================                             |  86%
  |                                                                                                                                                                                                                 
  |===========================================================================================================================================================================================================| 100%
#Saving results in dataframe
sim3_retention = data.frame(cbind(t(retention_lasso), t(retention_lasso2), t(retention_RF)))
colnames(sim3_retention) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim3_retention,"sim3_retention.csv", row.names = FALSE)

sim3_identification = data.frame(cbind(t(identification_lasso), t(identification_lasso2), t(identification_RF)))
colnames(sim3_identification) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim3_identification,"sim3_identification.csv", row.names = FALSE)

sim3_prediction = data.frame(cbind(t(prediction_lasso), t(prediction_lasso2), t(prediction_RF)))
colnames(sim3_prediction) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim3_prediction,"sim3_prediction.csv", row.names = FALSE)

end_time <- Sys.time()

cat("Duration for Number of Sims = ", n_sim, "is: ", end_time - start_time)
Duration for Number of Sims =  15 is:  1.454511
#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency lasso - conservative", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), main="Retention frequency lasso - optimal pred", col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), main="Retention frequency VSURF - prediction", col="red", type="b")


#--------------
# Identification Plot
#---------------
true_sparsity = length(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(identification_lasso, true_sparsity), main="Identification frequency lasso - conservative", col="blue", type="b", ylim=c(75,100))
points(snr.vec, retention_frequency(identification_lasso2, true_sparsity), main="Identification frequency lasso - optimal pred", col="green", type="b")
points(snr.vec, retention_frequency(identification_RF, true_sparsity), main="Identification frequency VSURF - prediction", col = "red", type="b")


#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE lasso - conservative", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2), main="MSE lasso - optimal pred", col="green", type="b")
points(snr.vec, error_rate(prediction_RF), main="MSE VSURF - prediction", col="red", type="b")

#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency lasso - conservative", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), main="Retention frequency lasso - optimal pred", col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), main="Retention frequency VSURF - prediction", col="red", type="b")


#--------------
# Identification Plot
#---------------
true_sparsity = length(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(identification_lasso, true_sparsity), main="Identification frequency lasso - conservative", col="blue", type="b", ylim=c(0,20))
points(snr.vec, retention_frequency(identification_lasso2, true_sparsity), main="Identification frequency lasso - optimal pred", col="green", type="b")
points(snr.vec, retention_frequency(identification_RF, true_sparsity), main="Identification frequency VSURF - prediction", col = "red", type="b")


#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE lasso - conservative", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2), main="MSE lasso - optimal pred", col="green", type="b")
points(snr.vec, error_rate(prediction_RF), main="MSE VSURF - prediction", col="red", type="b")

LS0tDQp0aXRsZTogIlIgTm90ZWJvb2siDQpvdXRwdXQ6IGh0bWxfbm90ZWJvb2sNCi0tLQ0KDQoNCg0KYGBge3J9DQojSW5zdGFsbGluZyBwYWNrYWdlcyMNCiNpbnN0YWxsLnBhY2thZ2VzKCJwYXJhbGxlbCIpDQpgYGANCg0KQWRkIGEgbmV3IGNodW5rIGJ5IGNsaWNraW5nIHRoZSAqSW5zZXJ0IENodW5rKiBidXR0b24gb24gdGhlIHRvb2xiYXIgb3IgYnkgcHJlc3NpbmcgKkN0cmwrQWx0K0kqLg0KYGBge3J9DQpsaWJyYXJ5KE1BU1MpDQpsaWJyYXJ5KE1hdHJpeCkNCmxpYnJhcnkoZ2xtbmV0KQ0KbGlicmFyeShSY3BwKQ0KbGlicmFyeShWU1VSRikNCmxpYnJhcnkoc3RhdHMpDQpsaWJyYXJ5KHBhcmFsbGVsKQ0KYGBgDQpgYGB7cn0NCiNJbXBvcnQgYXV4aWxpYXJ5IGZ1bmN0aW9ucw0Kc291cmNlKCJhdXhpbGlhcnlfZnVuY3Rpb25zLlIiLCBsb2NhbD1GQUxTRSkNCmBgYA0KYGBge3J9DQpzZXQuc2VlZCg0NTYpDQpgYGANCg0KV2hlbiB5b3Ugc2F2ZSB0aGUgbm90ZWJvb2ssIGFuIEhUTUwgZmlsZSBjb250YWluaW5nIHRoZSBjb2RlIGFuZCBvdXRwdXQgd2lsbCBiZSBzYXZlZCBhbG9uZ3NpZGUgaXQgKGNsaWNrIHRoZSAqUHJldmlldyogYnV0dG9uIG9yIHByZXNzICpDdHJsK1NoaWZ0K0sqIHRvIHByZXZpZXcgdGhlIEhUTUwgZmlsZSkuDQoNClRoZSBwcmV2aWV3IHNob3dzIHlvdSBhIHJlbmRlcmVkIEhUTUwgY29weSBvZiB0aGUgY29udGVudHMgb2YgdGhlIGVkaXRvci4gQ29uc2VxdWVudGx5LCB1bmxpa2UgKktuaXQqLCAqUHJldmlldyogZG9lcyBub3QgcnVuIGFueSBSIGNvZGUgY2h1bmtzLiBJbnN0ZWFkLCB0aGUgb3V0cHV0IG9mIHRoZSBjaHVuayB3aGVuIGl0IHdhcyBsYXN0IHJ1biBpbiB0aGUgZWRpdG9yIGlzIGRpc3BsYXllZC4NCmBgYHtyfQ0KYmV0YSA9IGJldGFfMShwPTEwMCxzPTUpDQpkZiA8LSBzaW11bGF0ZShuPTEwMCwgcD0xMDAsIHJobz0wLjUsIGJldGE9YmV0YSwgU05SID0gMSkkZGYNCnggPC0gZGF0YS5tYXRyaXgoZGZbLC0xXSkgI2V4cGxhbiB2YXIsIGdsbW5ldCBjYW4ndCB1c2UgZGF0YWZyYW1lDQp5IDwtIGRhdGEubWF0cml4KGRmWywxXSkgI2RlcGVuZGVudCB2YXIsIGdsbW5ldCBjYW4ndCB1c2UgZGF0YWZyYW1lDQoNCmN2Lm91dCA9IGN2LmdsbW5ldCh4LCB5LCBhbHBoYSA9IDEsIGludGVyY2VwdD1GQUxTRSkgIyBGaXQgbGFzc28gbW9kZWwgb24gdHJhaW5pbmcgZGF0YQ0KcGxvdChjdi5vdXQpICMgRHJhdyBwbG90IG9mIHRyYWluaW5nIE1TRSBhcyBhIGZ1bmN0aW9uIG9mIGxhbWJkYQ0KbGFtID0gY3Yub3V0JGxhbWJkYS4xc2UgIyBTZWxlY3QgbW9yZSBjb25zZXJ2YXRpdmUgbGFtYmRhIGZvciB2YXJpYWJsZSBzZWxlY3Rpb24NCg0KDQpsYXNzb19jb2VmID0gcHJlZGljdChjdi5vdXQsIHR5cGUgPSAiY29lZmZpY2llbnRzIiwgcyA9IGxhbSkgIyBEaXNwbGF5IGNvZWZmaWNpZW50cyB1c2luZyBsYW1iZGEgY2hvc2VuIGJ5IENWDQpgYGANCg0KDQpgYGB7cn0NCg0KYmV0YSA9IGJldGFfMihwPTUwLHM9NSkNCmRmIDwtIHNpbXVsYXRlKG49MTAwLCBwPTUwLCByaG89MC41LCBiZXRhPWJldGEsIFNOUiA9IDEpJGRmDQpyZXN1bHQgPSBSRl9WU1VSRihkYXRhPWRmLCBiZXRhPWJldGEpDQoNCmBgYA0KDQoNCg0KDQoNCg0KYGBge3J9DQpSRl9WU1VSRiA8LSBmdW5jdGlvbihkYXRhLCAjZGF0YSBmcmFtZSAtIGRlcGVuZGVudCB2YXJpYWJsZSBmaXJzdA0KICAgICAgICAgICAgICAgICAgICAgYmV0YSAjdHJ1ZSBjb2VmZmljaWVudHMNCil7DQogICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAjIFVzZXMgVlNVUkYgcHJlZGljdGlvbiB1bmRlciBwYXJhbGxlbGl6YXRpb24gYW5kDQogICMgcmV0dXJucyBudW1iZXIgb2YgY29ycmVjdGx5IGlkZW50aWZpZWQgIHNpZ25pZmljYW50IHZhcmlhYmxlcy4NCiAgIyBNeXRyZWUgYW5kIG50cmVlIGFyZSBzZXQgdG8gZGVmYXVsdA0KICAjIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0gDQogIHggPC0gZGF0YS5tYXRyaXgoZGF0YVssLTFdKSAjZXhwbGFuIHZhciwgZ2xtbmV0IGNhbid0IHVzZSBkYXRhZnJhbWUNCiAgeSA8LSBkYXRhLm1hdHJpeChkYXRhWywxXSkgI2RlcGVuZGVudCB2YXIsIGdsbW5ldCBjYW4ndCB1c2UgZGF0YWZyYW1lDQogIA0KICBkZWZhdWx0VyA8LSBnZXRPcHRpb24oIndhcm4iKSAgI1R1cm4gb2ZmIHdhcm5pbmcgbWVzc2FnZXMNCiAgb3B0aW9ucyh3YXJuID0gLTEpIA0KICANCg0KICAjVmFyaWFibGUgU2VsZWN0aW9uIHVzaW5nIFJhbmRvbSBGb3Jlc3QNCiAgbW9kZWwudnN1cmYgPC0gVlNVUkYoeD14LCB5PXksIHBhcmFsbGVsID0gVFJVRSAsIG5jb3Jlcz0gNCkNCiAgDQogIG9wdGlvbnMod2FybiA9IGRlZmF1bHRXKSAjcmUtZW5hYmxlIHdhcm5pbmcgbWVzc2FnZXMNCg0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICMgUmV0ZW50aW9uIEZyZXF1ZW5jeQ0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICNDcmVhdGUgYm9vbGlhbiB2ZWN0b3Igb2Ygc2VsZWN0ZWQgY29lZmZpY2llbnRzDQogIGxvYyA9IG1vZGVsLnZzdXJmJHZhcnNlbGVjdC5wcmVkICMgbG9jYXRpb24gb2Ygc2lnbmlmaWNhbnQgY29lZmZpY2llbnRzDQogIGVzdGltX3ZhciA9IHJlcCgwLCBsZW5ndGgoYmV0YSkpICNjcmVhdGUgemVybyB2ZWN0b3Igb2YgY29ycmVjdCBsZW5ndGgNCiAgZXN0aW1fdmFyW2xvY10gPSAxICNwb3B1bGF0ZSB6ZXJvIHZlY3Rvcg0KICANCiAgcmV0ZW50aW9uID0gdmFyX3JldGVudGlvbihlc3RpbV92YXIsIGJldGEpICNjb3VudHMgb25seSBzaWduaWZpY2FudCB2YXJpYWJsZXMNCiAgaWRlbnRpZmljYXRpb24gPSB2YXJfaWRlbnRpZmljYXRpb24oZXN0aW1fdmFyLCBiZXRhKSAjY291bnRzIGFsbCB2YXJzDQoNCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAjIE51bWJlciBOb256ZXJvIGVsZW1lbnRzDQogICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0gDQogIG5vbnplcm8gPSB2YXJfbm9uemVybyhlc3RpbV92YXIsIGJldGEpICNjb3VudCBub256ZXJvIHZhcnMNCiAgDQogICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiAgIyBPT0IgZXJyb3INCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICBPT0JfZXJyb3IgPSBtaW4obW9kZWwudnN1cmYkZXJyLnByZWQpICMgVlNVUkYgcmV0dXJucyBhIHZlY3RvciwgZmluYWwgZWxlbWVudCBpcyAobWluaW1hbCkgT09CIGVycm9yIGFuZCBpbmNsdWRlcyBhbGwgIXByZWRpY3Rpb24hIHZhcmlhYmxlcw0KICANCiAgcmVzdWx0ID0gbGlzdCgicmV0ZW50aW9uIiA9IHJldGVudGlvbiwgImlkZW50aWZpY2F0aW9uIiA9IGlkZW50aWZpY2F0aW9uLCAiT09CX2Vycm9yIiA9IE9PQl9lcnJvcikNCiAgDQogIHJldHVybihyZXN1bHQpDQp9DQogIA0KDQpgYGANCg0KDQoNCg0KDQoNCg0KDQpgYGB7cn0NCmN2Lmxhc3NvXzIgPC0gZnVuY3Rpb24oZGF0YSwgI2RhdGEgZnJhbWUgLSBkZXBlbmRlbnQgdmFyaWFibGUgZmlyc3QNCiAgICAgICAgICAgICAgICAgICAgIGJldGEgIyB0cnVlIGNvZWZmaWNpZW50cw0KKXsNCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICMgVXNlcyAxMCBmb2xkIENWIGFuZCB1c2VzIDEgU0UgbGFtYmRhDQogICMgYXMgY29uc2VydmF0aXZlIGVzdGltYXRlIGZvciB2YXJpYWJsZSBzZWxlY3Rpb24NCiAgIyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogIHggPC0gZGF0YS5tYXRyaXgoZGF0YVssLTFdKSAjZXhwbGFuIHZhciwgZ2xtbmV0IGNhbid0IHVzZSBkYXRhZnJhbWUNCiAgeSA8LSBkYXRhLm1hdHJpeChkYXRhWywxXSkgI2RlcGVuZGVudCB2YXIsIGdsbW5ldCBjYW4ndCB1c2UgZGF0YWZyYW1lDQogIA0KICBjdi5vdXQgPSBjdi5nbG1uZXQoeCwgeSwgYWxwaGEgPSAxLCBpbnRlcmNlcHQ9RkFMU0UpICMgRml0IGxhc3NvIG1vZGVsIG9uIHRyYWluaW5nIGRhdGENCiAgI2xhbSA9IGN2Lm91dCRsYW1iZGEuMXNlICMgU2VsZWN0IG1vcmUgY29uc2VydmF0aXZlIGxhbWJkYSBmb3IgdmFyaWFibGUgc2VsZWN0aW9uDQogIGxhbSA9IGN2Lm91dCRsYW1iZGEubWluDQogIA0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICMgUmV0ZW50aW9uIEZyZXF1ZW5jeQ0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogIGxhc3NvX2NvZWYgPSBwcmVkaWN0KGN2Lm91dCwgdHlwZSA9ICJjb2VmZmljaWVudHMiLCBzID0gbGFtKSAjIERpc3BsYXkgY29lZmZpY2llbnRzIHVzaW5nIGxhbWJkYSBjaG9zZW4gYnkgQ1YNCiAgcmV0ZW50aW9uID0gdmFyX3JldGVudGlvbihsYXNzb19jb2VmLCBiZXRhKSAjY291bnRzIHNpZ25pZmljYW50IHZhcnMNCiAgaWRlbnRpZmljYXRpb24gPSB2YXJfaWRlbnRpZmljYXRpb24obGFzc29fY29lZiwgYmV0YSkgI2NvdW50cyBhbGwgdmFycw0KDQogICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiAgIyBOdW1iZXIgTm9uemVybyBlbGVtZW50cw0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tIA0KICBub256ZXJvID0gdmFyX25vbnplcm8obGFzc29fY29lZiwgYmV0YSkgI2NvdW50IG5vbnplcm8gdmFycw0KICANCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAjIE1TRQ0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogIG1zZSA8LSBjdi5vdXQkY3ZtW2N2Lm91dCRsYW1iZGEgPT0gY3Yub3V0JGxhbWJkYS4xc2VdDQogIA0KICANCiAgcmVzdWx0cyA9IGxpc3QoInJldGVudGlvbiIgPSByZXRlbnRpb24sICJpZGVudGlmaWNhdGlvbiIgPWlkZW50aWZpY2F0aW9uLCAibXNlIiA9IG1zZSkNCiAgcmV0dXJuKHJlc3VsdHMpDQp9DQpgYGANCg0KDQpgYGB7cn0NCiMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KIyBTaW11bGF0aW9uIDENCiMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KDQpzdGFydF90aW1lIDwtIFN5cy50aW1lKCkNCg0KIyBOdW1iZXIgb2Ygc2ltdWxhdGlvbnMNCm5fc2ltID0gMzANCiMgU2lnbmFsLXRvLW5vaXNlIHJhdGlvcyANCnNuci52ZWMgPSBleHAoc2VxKGxvZygwLjA1KSxsb2coNiksbGVuZ3RoPTEwKSkNCiNiZXRhIHZlY3Rvcg0KYmV0YSA9IGJldGFfMShwPTUwLHM9NSkNCiNjb250YWluZXJzIHRvIHN0b3JlIHJlc3VsdHMNCnJldGVudGlvbl9sYXNzbyA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KcmV0ZW50aW9uX2xhc3NvMiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KcmV0ZW50aW9uX1JGID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQoNCmlkZW50aWZpY2F0aW9uX2xhc3NvID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQppZGVudGlmaWNhdGlvbl9sYXNzbzIgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCmlkZW50aWZpY2F0aW9uX1JGID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQoNCnByZWRpY3Rpb25fbGFzc28gPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCnByZWRpY3Rpb25fbGFzc28yID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQpwcmVkaWN0aW9uX1JGID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQoNCiNTaW11bGF0aW9uDQpmb3IgKGogaW4gMTpsZW5ndGgoc25yLnZlYykpew0KICAgIFNOUiA9IHNuci52ZWNbal0NCiAgICBmb3IgKGkgaW4gMTpuX3NpbSl7DQogICAgICAgIGRmIDwtIHNpbXVsYXRlKG49MTAwLCBwPTUwLCByaG89MC41LCBiZXRhPWJldGEsIFNOUiA9IFNOUikkZGYgDQogICAgICAgIHJlc19sYXNzbyA9IGN2Lmxhc3NvKGRhdGE9ZGYsIGJldGE9YmV0YSkNCiAgICAgICAgcmV0ZW50aW9uX2xhc3NvW2ksIGpdID0gcmVzX2xhc3NvJHJldGVudGlvbiAgIA0KICAgICAgICBpZGVudGlmaWNhdGlvbl9sYXNzb1tpLCBqXSA9IHJlc19sYXNzbyRpZGVudGlmaWNhdGlvbg0KICAgICAgICBwcmVkaWN0aW9uX2xhc3NvW2ksIGpdID0gcmVzX2xhc3NvJG1zZQ0KICAgICAgICANCiAgICAgICAgcmVzX2xhc3NvMiA9IGN2Lmxhc3NvXzIoZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgICAgICByZXRlbnRpb25fbGFzc28yW2ksIGpdID0gcmVzX2xhc3NvMiRyZXRlbnRpb24gICANCiAgICAgICAgaWRlbnRpZmljYXRpb25fbGFzc28yW2ksIGpdID0gcmVzX2xhc3NvMiRpZGVudGlmaWNhdGlvbg0KICAgICAgICBwcmVkaWN0aW9uX2xhc3NvMltpLCBqXSA9IHJlc19sYXNzbzIkbXNlDQogICAgICAgIA0KICAgICAgICByZXNfUkYgPSBSRl9WU1VSRihkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgICAgIHJldGVudGlvbl9SRltpLCBqXSA9IHJlc19SRiRyZXRlbnRpb24gICANCiAgICAgICAgaWRlbnRpZmljYXRpb25fUkZbaSwgal0gPSByZXNfUkYkaWRlbnRpZmljYXRpb24NCiAgICAgICAgcHJlZGljdGlvbl9SRltpLCBqXSA9IHJlc19SRiRPT0JfZXJyb3INCiAgICAgICAgDQogICAgfQ0KfQ0KDQojU2F2aW5nIHJlc3VsdHMgaW4gZGF0YWZyYW1lDQpzaW0xX3JldGVudGlvbiA9IGRhdGEuZnJhbWUoY2JpbmQodChyZXRlbnRpb25fbGFzc28pLCB0KHJldGVudGlvbl9sYXNzbzIpLCB0KHJldGVudGlvbl9SRikpKQ0KY29sbmFtZXMoc2ltMV9yZXRlbnRpb24pID0gYyhyZXAoIkxBU1NPMSIsIG5fc2ltKSwgcmVwKCJMQVNTTzIiLCBuX3NpbSksIHJlcCgiUkZfcHJlZCIsIG5fc2ltKSkNCndyaXRlLmNzdihzaW0xX3JldGVudGlvbiwic2ltMV9yZXRlbnRpb24uY3N2Iiwgcm93Lm5hbWVzID0gRkFMU0UpDQoNCnNpbTFfaWRlbnRpZmljYXRpb24gPSBkYXRhLmZyYW1lKGNiaW5kKHQoaWRlbnRpZmljYXRpb25fbGFzc28pLCB0KGlkZW50aWZpY2F0aW9uX2xhc3NvMiksIHQoaWRlbnRpZmljYXRpb25fUkYpKSkNCmNvbG5hbWVzKHNpbTFfaWRlbnRpZmljYXRpb24pID0gYyhyZXAoIkxBU1NPMSIsIG5fc2ltKSwgcmVwKCJMQVNTTzIiLCBuX3NpbSksIHJlcCgiUkZfcHJlZCIsIG5fc2ltKSkNCndyaXRlLmNzdihzaW0xX2lkZW50aWZpY2F0aW9uLCJzaW0xX2lkZW50aWZpY2F0aW9uLmNzdiIsIHJvdy5uYW1lcyA9IEZBTFNFKQ0KDQpzaW0xX3ByZWRpY3Rpb24gPSBkYXRhLmZyYW1lKGNiaW5kKHQocHJlZGljdGlvbl9sYXNzbyksIHQocHJlZGljdGlvbl9sYXNzbzIpLCB0KHByZWRpY3Rpb25fUkYpKSkNCmNvbG5hbWVzKHNpbTFfcHJlZGljdGlvbikgPSBjKHJlcCgiTEFTU08xIiwgbl9zaW0pLCByZXAoIkxBU1NPMiIsIG5fc2ltKSwgcmVwKCJSRl9wcmVkIiwgbl9zaW0pKQ0Kd3JpdGUuY3N2KHNpbTFfcHJlZGljdGlvbiwic2ltMV9wcmVkaWN0aW9uLmNzdiIsIHJvdy5uYW1lcyA9IEZBTFNFKQ0KDQplbmRfdGltZSA8LSBTeXMudGltZSgpDQoNCmNhdCgiRHVyYXRpb24gZm9yIE51bWJlciBvZiBTaW1zID0gIiwgbl9zaW0sICJpczogIiwgZW5kX3RpbWUgLSBzdGFydF90aW1lKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgUmV0ZW50aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnRydWVfc3BhcnNpdHkgPSBzdW0oYmV0YSkjIFNVTSBhcyBzcGFyc2l0eSBtZWFzdXJlIG5vdCBjb3JyZWN0IGlmIHRydWUgYmV0YSBub3QgYmluYXJ5DQpwbG90KHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX2xhc3NvLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIGNvbnNlcnZhdGl2ZSIsIGNvbD0iYmx1ZSIsIHR5cGUgPSAiYiIpDQpsaW5lcyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbzIsIHRydWVfc3BhcnNpdHkpLCBtYWluPSJSZXRlbnRpb24gZnJlcXVlbmN5IGxhc3NvIC0gb3B0aW1hbCBwcmVkIiwgY29sPSJncmVlbiIsIHR5cGU9ImIiKQ0KbGluZXMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShyZXRlbnRpb25fUkYsIHRydWVfc3BhcnNpdHkpLCBtYWluPSJSZXRlbnRpb24gZnJlcXVlbmN5IFZTVVJGIC0gcHJlZGljdGlvbiIsIGNvbD0icmVkIiwgdHlwZT0iYiIpDQoNCiMtLS0tLS0tLS0tLS0tLQ0KIyBJZGVudGlmaWNhdGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQp0cnVlX3NwYXJzaXR5ID0gbGVuZ3RoKGJldGEpIyBTVU0gYXMgc3BhcnNpdHkgbWVhc3VyZSBub3QgY29ycmVjdCBpZiB0cnVlIGJldGEgbm90IGJpbmFyeQ0KcGxvdChzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX2xhc3NvLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iSWRlbnRpZmljYXRpb24gZnJlcXVlbmN5IGxhc3NvIC0gY29uc2VydmF0aXZlIiwgY29sPSJibHVlIiwgdHlwZT0iYiIsIHlsaW09Yyg3NSwxMDApKQ0KcG9pbnRzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3koaWRlbnRpZmljYXRpb25fbGFzc28yLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iSWRlbnRpZmljYXRpb24gZnJlcXVlbmN5IGxhc3NvIC0gb3B0aW1hbCBwcmVkIiwgY29sPSJncmVlbiIsIHR5cGU9ImIiKQ0KcG9pbnRzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3koaWRlbnRpZmljYXRpb25fUkYsIHRydWVfc3BhcnNpdHkpLCBtYWluPSJJZGVudGlmaWNhdGlvbiBmcmVxdWVuY3kgVlNVUkYgLSBwcmVkaWN0aW9uIiwgY29sID0gInJlZCIsIHR5cGU9ImIiKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgUHJlZGljdGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQpwbG90KHNuci52ZWMsIGVycm9yX3JhdGUocHJlZGljdGlvbl9sYXNzbyksIG1haW49Ik1TRSBsYXNzbyAtIGNvbnNlcnZhdGl2ZSIsIGNvbD0iYmx1ZSIsIHR5cGU9ImIiKQ0KcG9pbnRzKHNuci52ZWMsIGVycm9yX3JhdGUocHJlZGljdGlvbl9sYXNzbzIpLCBtYWluPSJNU0UgbGFzc28gLSBvcHRpbWFsIHByZWQiLCBjb2w9ImdyZWVuIiwgdHlwZT0iYiIpDQpwb2ludHMoc25yLnZlYywgZXJyb3JfcmF0ZShwcmVkaWN0aW9uX1JGKSwgbWFpbj0iTVNFIFZTVVJGIC0gcHJlZGljdGlvbiIsIGNvbD0icmVkIiwgdHlwZT0iYiIpDQoNCmBgYA0KDQoNCg0KDQoNCg0KDQpgYGB7cn0NCiMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KIyBTaW11bGF0aW9uIDINCiMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KDQpzdGFydF90aW1lIDwtIFN5cy50aW1lKCkNCg0KIyBOdW1iZXIgb2Ygc2ltdWxhdGlvbnMNCm5fc2ltID0gMzANCiMgU2lnbmFsLXRvLW5vaXNlIHJhdGlvcyANCnNuci52ZWMgPSBleHAoc2VxKGxvZygwLjA1KSxsb2coNiksbGVuZ3RoPTEwKSkNCiNiZXRhIHZlY3Rvcg0KYmV0YSA9IGJldGFfMihwPTUwLHM9NSkNCiNjb250YWluZXJzIHRvIHN0b3JlIHJlc3VsdHMNCnJldGVudGlvbl9sYXNzbyA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KcmV0ZW50aW9uX2xhc3NvMiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KcmV0ZW50aW9uX1JGID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQoNCmlkZW50aWZpY2F0aW9uX2xhc3NvID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQppZGVudGlmaWNhdGlvbl9sYXNzbzIgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCmlkZW50aWZpY2F0aW9uX1JGID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQoNCnByZWRpY3Rpb25fbGFzc28gPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCnByZWRpY3Rpb25fbGFzc28yID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQpwcmVkaWN0aW9uX1JGID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQoNCiNTaW11bGF0aW9uDQpmb3IgKGogaW4gMTpsZW5ndGgoc25yLnZlYykpew0KICAgIFNOUiA9IHNuci52ZWNbal0NCiAgICBmb3IgKGkgaW4gMTpuX3NpbSl7DQogICAgICAgIGRmIDwtIHNpbXVsYXRlKG49MTAwLCBwPTUwLCByaG89MC41LCBiZXRhPWJldGEsIFNOUiA9IFNOUikkZGYgDQogICAgICAgIHJlc19sYXNzbyA9IGN2Lmxhc3NvKGRhdGE9ZGYsIGJldGE9YmV0YSkNCiAgICAgICAgcmV0ZW50aW9uX2xhc3NvW2ksIGpdID0gcmVzX2xhc3NvJHJldGVudGlvbiAgIA0KICAgICAgICBpZGVudGlmaWNhdGlvbl9sYXNzb1tpLCBqXSA9IHJlc19sYXNzbyRpZGVudGlmaWNhdGlvbg0KICAgICAgICBwcmVkaWN0aW9uX2xhc3NvW2ksIGpdID0gcmVzX2xhc3NvJG1zZQ0KICAgICAgICANCiAgICAgICAgcmVzX2xhc3NvMiA9IGN2Lmxhc3NvXzIoZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgICAgICByZXRlbnRpb25fbGFzc28yW2ksIGpdID0gcmVzX2xhc3NvMiRyZXRlbnRpb24gICANCiAgICAgICAgaWRlbnRpZmljYXRpb25fbGFzc28yW2ksIGpdID0gcmVzX2xhc3NvMiRpZGVudGlmaWNhdGlvbg0KICAgICAgICBwcmVkaWN0aW9uX2xhc3NvMltpLCBqXSA9IHJlc19sYXNzbzIkbXNlDQogICAgICAgIA0KICAgICAgICByZXNfUkYgPSBSRl9WU1VSRihkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgICAgIHJldGVudGlvbl9SRltpLCBqXSA9IHJlc19SRiRyZXRlbnRpb24gICANCiAgICAgICAgaWRlbnRpZmljYXRpb25fUkZbaSwgal0gPSByZXNfUkYkaWRlbnRpZmljYXRpb24NCiAgICAgICAgcHJlZGljdGlvbl9SRltpLCBqXSA9IHJlc19SRiRPT0JfZXJyb3INCiAgICAgICAgDQogICAgfQ0KfQ0KDQojU2F2aW5nIHJlc3VsdHMgaW4gZGF0YWZyYW1lDQpzaW0xX3JldGVudGlvbiA9IGRhdGEuZnJhbWUoY2JpbmQodChyZXRlbnRpb25fbGFzc28pLCB0KHJldGVudGlvbl9sYXNzbzIpLCB0KHJldGVudGlvbl9SRikpKQ0KY29sbmFtZXMoc2ltMV9yZXRlbnRpb24pID0gYyhyZXAoIkxBU1NPMSIsIG5fc2ltKSwgcmVwKCJMQVNTTzIiLCBuX3NpbSksIHJlcCgiUkZfcHJlZCIsIG5fc2ltKSkNCndyaXRlLmNzdihzaW0xX3JldGVudGlvbiwic2ltMl9yZXRlbnRpb24uY3N2Iiwgcm93Lm5hbWVzID0gRkFMU0UpDQoNCnNpbTFfaWRlbnRpZmljYXRpb24gPSBkYXRhLmZyYW1lKGNiaW5kKHQoaWRlbnRpZmljYXRpb25fbGFzc28pLCB0KGlkZW50aWZpY2F0aW9uX2xhc3NvMiksIHQoaWRlbnRpZmljYXRpb25fUkYpKSkNCmNvbG5hbWVzKHNpbTFfaWRlbnRpZmljYXRpb24pID0gYyhyZXAoIkxBU1NPMSIsIG5fc2ltKSwgcmVwKCJMQVNTTzIiLCBuX3NpbSksIHJlcCgiUkZfcHJlZCIsIG5fc2ltKSkNCndyaXRlLmNzdihzaW0xX2lkZW50aWZpY2F0aW9uLCJzaW0yX2lkZW50aWZpY2F0aW9uLmNzdiIsIHJvdy5uYW1lcyA9IEZBTFNFKQ0KDQpzaW0xX3ByZWRpY3Rpb24gPSBkYXRhLmZyYW1lKGNiaW5kKHQocHJlZGljdGlvbl9sYXNzbyksIHQocHJlZGljdGlvbl9sYXNzbzIpLCB0KHByZWRpY3Rpb25fUkYpKSkNCmNvbG5hbWVzKHNpbTFfcHJlZGljdGlvbikgPSBjKHJlcCgiTEFTU08xIiwgbl9zaW0pLCByZXAoIkxBU1NPMiIsIG5fc2ltKSwgcmVwKCJSRl9wcmVkIiwgbl9zaW0pKQ0Kd3JpdGUuY3N2KHNpbTFfcHJlZGljdGlvbiwic2ltMl9wcmVkaWN0aW9uLmNzdiIsIHJvdy5uYW1lcyA9IEZBTFNFKQ0KDQplbmRfdGltZSA8LSBTeXMudGltZSgpDQoNCmNhdCgiRHVyYXRpb24gZm9yIE51bWJlciBvZiBTaW1zID0gIiwgbl9zaW0sICJpczogIiwgZW5kX3RpbWUgLSBzdGFydF90aW1lKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgUmV0ZW50aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnRydWVfc3BhcnNpdHkgPSBzdW0oYmV0YSkjIFNVTSBhcyBzcGFyc2l0eSBtZWFzdXJlIG5vdCBjb3JyZWN0IGlmIHRydWUgYmV0YSBub3QgYmluYXJ5DQpwbG90KHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX2xhc3NvLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSAtIFNpbXVsYXRpb24gMiIsIGNvbD0iYmx1ZSIsIHR5cGUgPSAiYiIpDQpsaW5lcyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbzIsIHRydWVfc3BhcnNpdHkpLCBjb2w9ImdyZWVuIiwgdHlwZT0iYiIpDQpsaW5lcyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9SRiwgdHJ1ZV9zcGFyc2l0eSksIGNvbD0icmVkIiwgdHlwZT0iYiIpDQoNCiMtLS0tLS0tLS0tLS0tLQ0KIyBJZGVudGlmaWNhdGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQp0cnVlX3NwYXJzaXR5ID0gbGVuZ3RoKGJldGEpIyBTVU0gYXMgc3BhcnNpdHkgbWVhc3VyZSBub3QgY29ycmVjdCBpZiB0cnVlIGJldGEgbm90IGJpbmFyeQ0KcGxvdChzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX2xhc3NvLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iSWRlbnRpZmljYXRpb24gZnJlcXVlbmN5IC0gU2ltdWxhdGlvbiAyIiwgY29sPSJibHVlIiwgdHlwZT0iYiIsIHlsaW09Yyg4MCwxMDApKQ0KcG9pbnRzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3koaWRlbnRpZmljYXRpb25fbGFzc28yLCB0cnVlX3NwYXJzaXR5KSwgIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgIGNvbCA9ICJyZWQiLCB0eXBlPSJiIikNCg0KIy0tLS0tLS0tLS0tLS0tDQojIFByZWRpY3Rpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KcGxvdChzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28pLCBtYWluPSJNU0UgLSBTaW11bGF0aW9uIDIiLCBjb2w9ImJsdWUiLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28yKSwgIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fUkYpLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KDQpgYGANCg0KDQpgYGB7cn0NCiMtLS0tLS0tLS0tLS0tLQ0KIyBSZXRlbnRpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KdHJ1ZV9zcGFyc2l0eSA9IHN1bShiZXRhKSMgU1VNIGFzIHNwYXJzaXR5IG1lYXN1cmUgbm90IGNvcnJlY3QgaWYgdHJ1ZSBiZXRhIG5vdCBiaW5hcnkNCnBsb3Qoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShyZXRlbnRpb25fbGFzc28sIHRydWVfc3BhcnNpdHkpLCBtYWluPSJSZXRlbnRpb24gZnJlcXVlbmN5IC0gU2ltdWxhdGlvbiAyIiwgY29sPSJibHVlIiwgdHlwZSA9ICJiIikNCmxpbmVzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX2xhc3NvMiwgdHJ1ZV9zcGFyc2l0eSksIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCmxpbmVzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgY29sPSJyZWQiLCB0eXBlPSJiIikNCg0KIy0tLS0tLS0tLS0tLS0tDQojIElkZW50aWZpY2F0aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnRydWVfc3BhcnNpdHkgPSBsZW5ndGgoYmV0YSkjIFNVTSBhcyBzcGFyc2l0eSBtZWFzdXJlIG5vdCBjb3JyZWN0IGlmIHRydWUgYmV0YSBub3QgYmluYXJ5DQpwbG90KHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3koaWRlbnRpZmljYXRpb25fbGFzc28sIHRydWVfc3BhcnNpdHkpLCBtYWluPSJJZGVudGlmaWNhdGlvbiBmcmVxdWVuY3kgLSBTaW11bGF0aW9uIDIiLCBjb2w9ImJsdWUiLCB0eXBlPSJiIiwgeWxpbT1jKDgwLDEwMCkpDQpwb2ludHMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShpZGVudGlmaWNhdGlvbl9sYXNzbzIsIHRydWVfc3BhcnNpdHkpLCAgY29sPSJncmVlbiIsIHR5cGU9ImIiKQ0KcG9pbnRzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3koaWRlbnRpZmljYXRpb25fUkYsIHRydWVfc3BhcnNpdHkpLCAgY29sID0gInJlZCIsIHR5cGU9ImIiKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgUHJlZGljdGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQpwbG90KHNuci52ZWMsIGVycm9yX3JhdGUocHJlZGljdGlvbl9sYXNzbyksIG1haW49Ik1TRSAtIFNpbXVsYXRpb24gMiIsIGNvbD0iYmx1ZSIsIHR5cGU9ImIiKQ0KcG9pbnRzKHNuci52ZWMsIGVycm9yX3JhdGUocHJlZGljdGlvbl9sYXNzbzIpLCAgY29sPSJncmVlbiIsIHR5cGU9ImIiKQ0KcG9pbnRzKHNuci52ZWMsIGVycm9yX3JhdGUocHJlZGljdGlvbl9SRiksIGNvbD0icmVkIiwgdHlwZT0iYiIpDQpgYGANCg0KDQoNCmBgYHtyfQ0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQojIFNpbXVsYXRpb24gMiAtIG9ubHkgTEFzc29zDQojLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCg0Kc3RhcnRfdGltZSA8LSBTeXMudGltZSgpDQoNCiMgTnVtYmVyIG9mIHNpbXVsYXRpb25zDQpuX3NpbSA9IDEwMA0KIyBTaWduYWwtdG8tbm9pc2UgcmF0aW9zIA0Kc25yLnZlYyA9IGV4cChzZXEobG9nKDAuMDUpLGxvZyg2KSxsZW5ndGg9MTApKQ0KI2JldGEgdmVjdG9yDQpiZXRhID0gYmV0YV8xKHA9NTAscz01KQ0KI2NvbnRhaW5lcnMgdG8gc3RvcmUgcmVzdWx0cw0KcmV0ZW50aW9uX2xhc3NvID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQpyZXRlbnRpb25fbGFzc28yID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQpyZXRlbnRpb25fUkYgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCg0KaWRlbnRpZmljYXRpb25fbGFzc28gPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCmlkZW50aWZpY2F0aW9uX2xhc3NvMiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KaWRlbnRpZmljYXRpb25fUkYgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCg0KcHJlZGljdGlvbl9sYXNzbyA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KcHJlZGljdGlvbl9sYXNzbzIgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCnByZWRpY3Rpb25fUkYgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCg0KI1NpbXVsYXRpb24NCmZvciAoaiBpbiAxOmxlbmd0aChzbnIudmVjKSl7DQogICAgU05SID0gc25yLnZlY1tqXQ0KICAgIGZvciAoaSBpbiAxOm5fc2ltKXsNCiAgICAgICAgZGYgPC0gc2ltdWxhdGUobj0xMDAsIHA9NTAsIHJobz0wLjUsIGJldGE9YmV0YSwgU05SID0gU05SKSRkZiANCiAgICAgICAgcmVzX2xhc3NvID0gY3YubGFzc28oZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgICAgICByZXRlbnRpb25fbGFzc29baSwgal0gPSByZXNfbGFzc28kcmV0ZW50aW9uICAgDQogICAgICAgIGlkZW50aWZpY2F0aW9uX2xhc3NvW2ksIGpdID0gcmVzX2xhc3NvJGlkZW50aWZpY2F0aW9uDQogICAgICAgIHByZWRpY3Rpb25fbGFzc29baSwgal0gPSByZXNfbGFzc28kbXNlDQogICAgICAgIA0KICAgICAgICByZXNfbGFzc28yID0gY3YubGFzc29fMihkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgICAgIHJldGVudGlvbl9sYXNzbzJbaSwgal0gPSByZXNfbGFzc28yJHJldGVudGlvbiAgIA0KICAgICAgICBpZGVudGlmaWNhdGlvbl9sYXNzbzJbaSwgal0gPSByZXNfbGFzc28yJGlkZW50aWZpY2F0aW9uDQogICAgICAgIHByZWRpY3Rpb25fbGFzc28yW2ksIGpdID0gcmVzX2xhc3NvMiRtc2UNCiAgICAgICAgDQogICAgICAgICNyZXNfUkYgPSBSRl9WU1VSRihkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgICAgICNyZXRlbnRpb25fUkZbaSwgal0gPSByZXNfUkYkcmV0ZW50aW9uICAgDQogICAgICAgICNpZGVudGlmaWNhdGlvbl9SRltpLCBqXSA9IHJlc19SRiRpZGVudGlmaWNhdGlvbg0KICAgICAgICMgcHJlZGljdGlvbl9SRltpLCBqXSA9IHJlc19SRiRPT0JfZXJyb3INCiAgICAgICAgDQogICAgfQ0KfQ0KDQojU2F2aW5nIHJlc3VsdHMgaW4gZGF0YWZyYW1lDQpzaW0xX3JldGVudGlvbiA9IGRhdGEuZnJhbWUoY2JpbmQodChyZXRlbnRpb25fbGFzc28pLCB0KHJldGVudGlvbl9sYXNzbzIpLCB0KHJldGVudGlvbl9SRikpKQ0KY29sbmFtZXMoc2ltMV9yZXRlbnRpb24pID0gYyhyZXAoIkxBU1NPMSIsIG5fc2ltKSwgcmVwKCJMQVNTTzIiLCBuX3NpbSksIHJlcCgiUkZfcHJlZCIsIG5fc2ltKSkNCndyaXRlLmNzdihzaW0xX3JldGVudGlvbiwic2ltMl9yZXRlbnRpb24uY3N2Iiwgcm93Lm5hbWVzID0gRkFMU0UpDQoNCnNpbTFfaWRlbnRpZmljYXRpb24gPSBkYXRhLmZyYW1lKGNiaW5kKHQoaWRlbnRpZmljYXRpb25fbGFzc28pLCB0KGlkZW50aWZpY2F0aW9uX2xhc3NvMiksIHQoaWRlbnRpZmljYXRpb25fUkYpKSkNCmNvbG5hbWVzKHNpbTFfaWRlbnRpZmljYXRpb24pID0gYyhyZXAoIkxBU1NPMSIsIG5fc2ltKSwgcmVwKCJMQVNTTzIiLCBuX3NpbSksIHJlcCgiUkZfcHJlZCIsIG5fc2ltKSkNCndyaXRlLmNzdihzaW0xX2lkZW50aWZpY2F0aW9uLCJzaW0yX2lkZW50aWZpY2F0aW9uLmNzdiIsIHJvdy5uYW1lcyA9IEZBTFNFKQ0KDQpzaW0xX3ByZWRpY3Rpb24gPSBkYXRhLmZyYW1lKGNiaW5kKHQocHJlZGljdGlvbl9sYXNzbyksIHQocHJlZGljdGlvbl9sYXNzbzIpLCB0KHByZWRpY3Rpb25fUkYpKSkNCmNvbG5hbWVzKHNpbTFfcHJlZGljdGlvbikgPSBjKHJlcCgiTEFTU08xIiwgbl9zaW0pLCByZXAoIkxBU1NPMiIsIG5fc2ltKSwgcmVwKCJSRl9wcmVkIiwgbl9zaW0pKQ0Kd3JpdGUuY3N2KHNpbTFfcHJlZGljdGlvbiwic2ltMl9wcmVkaWN0aW9uLmNzdiIsIHJvdy5uYW1lcyA9IEZBTFNFKQ0KDQplbmRfdGltZSA8LSBTeXMudGltZSgpDQoNCmNhdCgiRHVyYXRpb24gZm9yIE51bWJlciBvZiBTaW1zID0gIiwgbl9zaW0sICJpczogIiwgZW5kX3RpbWUgLSBzdGFydF90aW1lKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgUmV0ZW50aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnRydWVfc3BhcnNpdHkgPSBzdW0oYmV0YSkjIFNVTSBhcyBzcGFyc2l0eSBtZWFzdXJlIG5vdCBjb3JyZWN0IGlmIHRydWUgYmV0YSBub3QgYmluYXJ5DQpwbG90KHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX2xhc3NvLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSAtIFNpbXVsYXRpb24gMiIsIGNvbD0iYmx1ZSIsIHR5cGUgPSAiYiIpDQpsaW5lcyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbzIsIHRydWVfc3BhcnNpdHkpLCBjb2w9ImdyZWVuIiwgdHlwZT0iYiIpDQpsaW5lcyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9SRiwgdHJ1ZV9zcGFyc2l0eSksIGNvbD0icmVkIiwgdHlwZT0iYiIpDQoNCiMtLS0tLS0tLS0tLS0tLQ0KIyBJZGVudGlmaWNhdGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQp0cnVlX3NwYXJzaXR5ID0gbGVuZ3RoKGJldGEpIyBTVU0gYXMgc3BhcnNpdHkgbWVhc3VyZSBub3QgY29ycmVjdCBpZiB0cnVlIGJldGEgbm90IGJpbmFyeQ0KcGxvdChzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX2xhc3NvLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iSWRlbnRpZmljYXRpb24gZnJlcXVlbmN5IC0gU2ltdWxhdGlvbiAyIiwgY29sPSJibHVlIiwgdHlwZT0iYiIsIHlsaW09Yyg4MCwxMDApKQ0KcG9pbnRzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3koaWRlbnRpZmljYXRpb25fbGFzc28yLCB0cnVlX3NwYXJzaXR5KSwgIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgIGNvbCA9ICJyZWQiLCB0eXBlPSJiIikNCg0KIy0tLS0tLS0tLS0tLS0tDQojIFByZWRpY3Rpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KcGxvdChzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28pLCBtYWluPSJNU0UgLSBTaW11bGF0aW9uIDIiLCBjb2w9ImJsdWUiLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28yKSwgIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fUkYpLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KYGBgDQoNCmBgYHtyfQ0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQojIFNpbXVsYXRpb24gMyAtIGJldGEgMw0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQoNCnN0YXJ0X3RpbWUgPC0gU3lzLnRpbWUoKQ0KDQojIE51bWJlciBvZiBzaW11bGF0aW9ucw0Kbl9zaW0gPSAxNQ0KIyBTaWduYWwtdG8tbm9pc2UgcmF0aW9zIA0Kc25yLnZlYyA9IGV4cChzZXEobG9nKDAuMDUpLGxvZyg2KSxsZW5ndGg9MTApKQ0KI2JldGEgdmVjdG9yDQpiZXRhID0gYmV0YV8zKHA9NTAscz01LCB2YWx1ZT0wLjUpDQojY29udGFpbmVycyB0byBzdG9yZSByZXN1bHRzDQpyZXRlbnRpb25fbGFzc28gPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCnJldGVudGlvbl9sYXNzbzIgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCnJldGVudGlvbl9SRiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KDQppZGVudGlmaWNhdGlvbl9sYXNzbyA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KaWRlbnRpZmljYXRpb25fbGFzc28yID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQppZGVudGlmaWNhdGlvbl9SRiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KDQpwcmVkaWN0aW9uX2xhc3NvID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQpwcmVkaWN0aW9uX2xhc3NvMiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KcHJlZGljdGlvbl9SRiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KDQojU2ltdWxhdGlvbg0KZm9yIChqIGluIDE6bGVuZ3RoKHNuci52ZWMpKXsNCiAgICBTTlIgPSBzbnIudmVjW2pdDQogICAgZm9yIChpIGluIDE6bl9zaW0pew0KICAgICAgICBkZiA8LSBzaW11bGF0ZShuPTEwMCwgcD01MCwgcmhvPTAuNSwgYmV0YT1iZXRhLCBTTlIgPSBTTlIpJGRmIA0KICAgICAgICByZXNfbGFzc28gPSBjdi5sYXNzbyhkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgICAgIHJldGVudGlvbl9sYXNzb1tpLCBqXSA9IHJlc19sYXNzbyRyZXRlbnRpb24gICANCiAgICAgICAgaWRlbnRpZmljYXRpb25fbGFzc29baSwgal0gPSByZXNfbGFzc28kaWRlbnRpZmljYXRpb24NCiAgICAgICAgcHJlZGljdGlvbl9sYXNzb1tpLCBqXSA9IHJlc19sYXNzbyRtc2UNCiAgICAgICAgDQogICAgICAgIHJlc19sYXNzbzIgPSBjdi5sYXNzb18yKGRhdGE9ZGYsIGJldGE9YmV0YSkNCiAgICAgICAgcmV0ZW50aW9uX2xhc3NvMltpLCBqXSA9IHJlc19sYXNzbzIkcmV0ZW50aW9uICAgDQogICAgICAgIGlkZW50aWZpY2F0aW9uX2xhc3NvMltpLCBqXSA9IHJlc19sYXNzbzIkaWRlbnRpZmljYXRpb24NCiAgICAgICAgcHJlZGljdGlvbl9sYXNzbzJbaSwgal0gPSByZXNfbGFzc28yJG1zZQ0KICAgICAgICANCiAgICAgICAgcmVzX1JGID0gUkZfVlNVUkYoZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgICAgICByZXRlbnRpb25fUkZbaSwgal0gPSByZXNfUkYkcmV0ZW50aW9uICAgDQogICAgICAgIGlkZW50aWZpY2F0aW9uX1JGW2ksIGpdID0gcmVzX1JGJGlkZW50aWZpY2F0aW9uDQogICAgICAgIHByZWRpY3Rpb25fUkZbaSwgal0gPSByZXNfUkYkT09CX2Vycm9yDQogICAgICAgIA0KICAgIH0NCn0NCg0KI1NhdmluZyByZXN1bHRzIGluIGRhdGFmcmFtZQ0Kc2ltM19yZXRlbnRpb24gPSBkYXRhLmZyYW1lKGNiaW5kKHQocmV0ZW50aW9uX2xhc3NvKSwgdChyZXRlbnRpb25fbGFzc28yKSwgdChyZXRlbnRpb25fUkYpKSkNCmNvbG5hbWVzKHNpbTNfcmV0ZW50aW9uKSA9IGMocmVwKCJMQVNTTzEiLCBuX3NpbSksIHJlcCgiTEFTU08yIiwgbl9zaW0pLCByZXAoIlJGX3ByZWQiLCBuX3NpbSkpDQp3cml0ZS5jc3Yoc2ltM19yZXRlbnRpb24sInNpbTNfcmV0ZW50aW9uLmNzdiIsIHJvdy5uYW1lcyA9IEZBTFNFKQ0KDQpzaW0zX2lkZW50aWZpY2F0aW9uID0gZGF0YS5mcmFtZShjYmluZCh0KGlkZW50aWZpY2F0aW9uX2xhc3NvKSwgdChpZGVudGlmaWNhdGlvbl9sYXNzbzIpLCB0KGlkZW50aWZpY2F0aW9uX1JGKSkpDQpjb2xuYW1lcyhzaW0zX2lkZW50aWZpY2F0aW9uKSA9IGMocmVwKCJMQVNTTzEiLCBuX3NpbSksIHJlcCgiTEFTU08yIiwgbl9zaW0pLCByZXAoIlJGX3ByZWQiLCBuX3NpbSkpDQp3cml0ZS5jc3Yoc2ltM19pZGVudGlmaWNhdGlvbiwic2ltM19pZGVudGlmaWNhdGlvbi5jc3YiLCByb3cubmFtZXMgPSBGQUxTRSkNCg0Kc2ltM19wcmVkaWN0aW9uID0gZGF0YS5mcmFtZShjYmluZCh0KHByZWRpY3Rpb25fbGFzc28pLCB0KHByZWRpY3Rpb25fbGFzc28yKSwgdChwcmVkaWN0aW9uX1JGKSkpDQpjb2xuYW1lcyhzaW0zX3ByZWRpY3Rpb24pID0gYyhyZXAoIkxBU1NPMSIsIG5fc2ltKSwgcmVwKCJMQVNTTzIiLCBuX3NpbSksIHJlcCgiUkZfcHJlZCIsIG5fc2ltKSkNCndyaXRlLmNzdihzaW0zX3ByZWRpY3Rpb24sInNpbTNfcHJlZGljdGlvbi5jc3YiLCByb3cubmFtZXMgPSBGQUxTRSkNCg0KZW5kX3RpbWUgPC0gU3lzLnRpbWUoKQ0KDQpjYXQoIkR1cmF0aW9uIGZvciBOdW1iZXIgb2YgU2ltcyA9ICIsIG5fc2ltLCAiaXM6ICIsIGVuZF90aW1lIC0gc3RhcnRfdGltZSkNCg0KIy0tLS0tLS0tLS0tLS0tDQojIFJldGVudGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQp0cnVlX3NwYXJzaXR5ID0gc3VtKGJldGEpIyBTVU0gYXMgc3BhcnNpdHkgbWVhc3VyZSBub3QgY29ycmVjdCBpZiB0cnVlIGJldGEgbm90IGJpbmFyeQ0KcGxvdChzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbywgdHJ1ZV9zcGFyc2l0eSksIG1haW49IlJldGVudGlvbiBmcmVxdWVuY3kgbGFzc28gLSBjb25zZXJ2YXRpdmUiLCBjb2w9ImJsdWUiLCB0eXBlID0gImIiKQ0KbGluZXMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShyZXRlbnRpb25fbGFzc28yLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCmxpbmVzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgSWRlbnRpZmljYXRpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KdHJ1ZV9zcGFyc2l0eSA9IGxlbmd0aChiZXRhKSMgU1VNIGFzIHNwYXJzaXR5IG1lYXN1cmUgbm90IGNvcnJlY3QgaWYgdHJ1ZSBiZXRhIG5vdCBiaW5hcnkNCnBsb3Qoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShpZGVudGlmaWNhdGlvbl9sYXNzbywgdHJ1ZV9zcGFyc2l0eSksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIGNvbnNlcnZhdGl2ZSIsIGNvbD0iYmx1ZSIsIHR5cGU9ImIiLCB5bGltPWMoNzUsMTAwKSkNCnBvaW50cyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX2xhc3NvMiwgdHJ1ZV9zcGFyc2l0eSksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iSWRlbnRpZmljYXRpb24gZnJlcXVlbmN5IFZTVVJGIC0gcHJlZGljdGlvbiIsIGNvbCA9ICJyZWQiLCB0eXBlPSJiIikNCg0KIy0tLS0tLS0tLS0tLS0tDQojIFByZWRpY3Rpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KcGxvdChzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28pLCBtYWluPSJNU0UgbGFzc28gLSBjb25zZXJ2YXRpdmUiLCBjb2w9ImJsdWUiLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28yKSwgbWFpbj0iTVNFIGxhc3NvIC0gb3B0aW1hbCBwcmVkIiwgY29sPSJncmVlbiIsIHR5cGU9ImIiKQ0KcG9pbnRzKHNuci52ZWMsIGVycm9yX3JhdGUocHJlZGljdGlvbl9SRiksIG1haW49Ik1TRSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KYGBgDQoNCmBgYHtyfQ0KIy0tLS0tLS0tLS0tLS0tDQojIFJldGVudGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQp0cnVlX3NwYXJzaXR5ID0gc3VtKGJldGEpIyBTVU0gYXMgc3BhcnNpdHkgbWVhc3VyZSBub3QgY29ycmVjdCBpZiB0cnVlIGJldGEgbm90IGJpbmFyeQ0KcGxvdChzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbywgdHJ1ZV9zcGFyc2l0eSksIG1haW49IlJldGVudGlvbiBmcmVxdWVuY3kgbGFzc28gLSBjb25zZXJ2YXRpdmUiLCBjb2w9ImJsdWUiLCB0eXBlID0gImIiKQ0KbGluZXMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShyZXRlbnRpb25fbGFzc28yLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCmxpbmVzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgSWRlbnRpZmljYXRpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KdHJ1ZV9zcGFyc2l0eSA9IGxlbmd0aChiZXRhKSMgU1VNIGFzIHNwYXJzaXR5IG1lYXN1cmUgbm90IGNvcnJlY3QgaWYgdHJ1ZSBiZXRhIG5vdCBiaW5hcnkNCnBsb3Qoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShpZGVudGlmaWNhdGlvbl9sYXNzbywgdHJ1ZV9zcGFyc2l0eSksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIGNvbnNlcnZhdGl2ZSIsIGNvbD0iYmx1ZSIsIHR5cGU9ImIiLCB5bGltPWMoMCwyMCkpDQpwb2ludHMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShpZGVudGlmaWNhdGlvbl9sYXNzbzIsIHRydWVfc3BhcnNpdHkpLCBtYWluPSJJZGVudGlmaWNhdGlvbiBmcmVxdWVuY3kgbGFzc28gLSBvcHRpbWFsIHByZWQiLCBjb2w9ImdyZWVuIiwgdHlwZT0iYiIpDQpwb2ludHMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShpZGVudGlmaWNhdGlvbl9SRiwgdHJ1ZV9zcGFyc2l0eSksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2wgPSAicmVkIiwgdHlwZT0iYiIpDQoNCiMtLS0tLS0tLS0tLS0tLQ0KIyBQcmVkaWN0aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnBsb3Qoc25yLnZlYywgZXJyb3JfcmF0ZShwcmVkaWN0aW9uX2xhc3NvKSwgbWFpbj0iTVNFIGxhc3NvIC0gY29uc2VydmF0aXZlIiwgY29sPSJibHVlIiwgdHlwZT0iYiIpDQpwb2ludHMoc25yLnZlYywgZXJyb3JfcmF0ZShwcmVkaWN0aW9uX2xhc3NvMiksIG1haW49Ik1TRSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fUkYpLCBtYWluPSJNU0UgVlNVUkYgLSBwcmVkaWN0aW9uIiwgY29sPSJyZWQiLCB0eXBlPSJiIikNCmBgYA0KDQo=